style.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. .watch-page {
  2. display: flex;
  3. height: 100%;
  4. gap: 0;
  5. @media (max-width: 768px) {
  6. flex-direction: column;
  7. }
  8. &__content {
  9. flex: 1;
  10. min-width: 0;
  11. overflow-y: auto;
  12. }
  13. &__player {
  14. position: relative;
  15. width: 100%;
  16. padding-top: 56.25%; // 16:9
  17. background: #000;
  18. iframe {
  19. position: absolute;
  20. top: 0;
  21. left: 0;
  22. width: 100%;
  23. height: 100%;
  24. border: none;
  25. }
  26. }
  27. &__offline {
  28. position: absolute;
  29. top: 0;
  30. left: 0;
  31. width: 100%;
  32. height: 100%;
  33. display: flex;
  34. flex-direction: column;
  35. align-items: center;
  36. justify-content: center;
  37. gap: 12px;
  38. color: #999;
  39. a {
  40. color: var(--brand-orange);
  41. text-decoration: underline;
  42. }
  43. }
  44. &__info {
  45. padding: 16px;
  46. }
  47. &__title {
  48. font-size: 1.125rem;
  49. font-weight: 600;
  50. margin-bottom: 8px;
  51. line-height: 1.3;
  52. }
  53. &__channel {
  54. display: flex;
  55. align-items: center;
  56. gap: 8px;
  57. margin-bottom: 12px;
  58. }
  59. &__channel-name {
  60. font-size: 0.875rem;
  61. font-weight: 500;
  62. display: flex;
  63. align-items: center;
  64. gap: 4px;
  65. &:hover {
  66. text-decoration: underline;
  67. }
  68. }
  69. &__verified {
  70. display: inline-flex;
  71. align-items: center;
  72. justify-content: center;
  73. width: 16px;
  74. height: 16px;
  75. border-radius: 50%;
  76. background: var(--brand-orange);
  77. color: #fff;
  78. font-size: 0.625rem;
  79. }
  80. &__handle {
  81. font-size: 0.75rem;
  82. color: var(--text-muted);
  83. }
  84. &__actions {
  85. display: flex;
  86. gap: 8px;
  87. }
  88. &__donate-btn {
  89. display: inline-flex;
  90. align-items: center;
  91. gap: 4px;
  92. padding: 8px 16px;
  93. border-radius: 20px;
  94. background: var(--brand-orange);
  95. color: #fff;
  96. font-size: 0.875rem;
  97. font-weight: 500;
  98. text-decoration: none;
  99. transition: opacity 0.15s;
  100. &:hover {
  101. opacity: 0.9;
  102. }
  103. }
  104. &__chat {
  105. width: 360px;
  106. flex-shrink: 0;
  107. border-left: 1px solid var(--border-default);
  108. display: flex;
  109. flex-direction: column;
  110. @media (max-width: 768px) {
  111. width: 100%;
  112. height: 400px;
  113. border-left: none;
  114. border-top: 1px solid var(--border-default);
  115. }
  116. }
  117. }